home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d3 / amac33.arc / SR.BAT < prev    next >
DOS Batch File  |  1991-04-28  |  674b  |  30 lines

  1. @echo off
  2. rem SR.BAT for NON-case sensitive search/replace        Mon  10-29-1990
  3.  
  4. rem Requires FGREP.COM
  5. rem Requires INPUT.COM
  6. rem "Enter" without any search or replace text terminates batch file
  7.  
  8. CLS
  9. INPUT Search Text=/b
  10.      IF Errorlevel=1 goto END
  11. SET  FGS=%ANS%
  12. ECHO 
  13. INPUT Replacement Text=/b
  14.      IF Errorlevel=1 goto END
  15. SET  FGR=%ANS%
  16. SET >c:$
  17.  
  18. ECHO 
  19. ECHO Searching For Files Containing "%FGS%" To Replace With "%FGR%"...
  20. ECHO ******** NON-CASE SENSITIVE SEARCH/REPLACE ********
  21. ECHO 
  22. BREAK on
  23. FGREP  -f    "%FGS%"    @SRCH-FG.LST  >c:$.ql
  24. BREAK off
  25. ECHO 
  26. COPY c:$.ql c:!
  27. Q.EXE       c:!    /ESRCH21.mac  /LSRCH21.mac
  28. ECHO 
  29. :END
  30.